* {
	padding: 0;
	margin: 0;
}

body {
	max-width: 1920px;
	min-width: 1310px;
	margin: auto;
	font-size: 16px;
	background-color: #f4f4f4;
}

img {
	image-rendering: -moz-crisp-edges;
	/* Firefox */
	image-rendering: -o-crisp-edges;
	/* Opera */
	image-rendering: -webkit-optimize-contrast;
	/* Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	/* IE (non-standard property) */
}

.mt-32 {
	margin-top: 32px !important;
}

.ml-16 {
	margin-left: 16px;
}

.mt-15 {
	margin-top: 15px;
}

.p-25 {
	padding: 25px;
}

.w-580 {
	width: 585px;
}

.line-single {
	width: 100%;
/*	display: -webkit-box;*/
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	white-space: nowrap;
}

/* 只显示两行，超过显示省略号 */
.line-two {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.line-four {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}
.line-eight {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
}

.container {
	width: 1200px;
	margin: 0 auto;
}

.bg-white {
	background-color: #fff;
	zoom: 1;
}

.layout {
	padding: 60px 0;
}

.header {
	background: url(../../Images/new/bg.png);
	width: 100%;
	height: 306px;
}


.header .search-group {
	display: inline-block;
	background-color: #1b75bb;
	width: 300px;
	height: 36px;
	line-height: 36px;
	border-radius: 20px;
	margin-right: 12px;
	margin-top: 20px;
}

.header .search-group input {
	border: none;
	vertical-align: middle;
	padding-left: 10px;
	margin-left: 10px;
	width: 240px;
	font-size: 16px;
	margin-top: -2px;
	background-color: #1b75bb;
	color: #fff;
}

.header .search-group input::-webkit-input-placeholder {
	color: #fff;
}

.header .search-group input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #fff;
}

.header .search-group input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #fff;
}

.header .search-group input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

.header .search-group img {
	margin-top: -3px;
}

.header .date {
	font-size: 16px;
	margin-top: 20px;
	color: #fff;
}

.header .logo {
	display: block;
	margin: 0 auto;
}

/* nav-banner */
.nav {
	width: 1200px;
	margin: 20px auto 0;
	position: relative;
	height: 50px;
	line-height: 50px;
	background: #0e598f;
}

.nav .pt-list {
	width: 100%;
	margin: auto;
}

.nav a {
	display: block;
}

.nav li:hover {
	background-color: #0f4276;
}

.nav .active {
	background-color: #0f4276;
}

.nav .pt-list li {
	width: 150px;
	float: left;
	color: #fff;
	text-align: center;
}

.nav .pt-list p {
	font-size: 16px;
	color: #fff;
	box-sizing: border-box;
}

.nav .pt-list li ul {
	width: 149px;
	margin-left: 0;
	background-color: #0e598f;
	display: none;
	/* 设置初始为不显示 */
	position: absolute;
	z-index: 99;
}

.nav .pt-list li:hover ul {
	display: block;
}

/* footer */
.footer{
	background-color: #0e598f;
	height: 258px;
	color: #fff;
	font-size: 14px;
}
.footer .container{
	padding: 20px 0;
	border-bottom: 1px solid #578bb1;
}
.footer .container a{
	color: #fff;
	margin-right: 10px;
}

.footer p{
	text-align: center;
	margin-top: 10px;
}
.footer img{
	display: block;
	margin: 20px auto 0;
}